home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / sun4.md / RCS / alloca.h,v < prev    next >
Encoding:
Text File  |  1990-03-15  |  1.6 KB  |  89 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     90.03.15.11.55.31;  author ouster;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     89.06.16.13.18.11;  author rab;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     89.05.17.16.21.46;  author rab;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.3
  30. log
  31. @Make sure alloca is declared "char *".
  32. @
  33. text
  34. @/*
  35.  * alloca.h --
  36.  *
  37.  *    Declarations of alloca() for the sun4.  Since the sun4 has
  38.  *      register window, this can't be handled in the normal way.
  39.  *
  40.  * Copyright 1989 Regents of the University of California
  41.  * Permission to use, copy, modify, and distribute this
  42.  * software and its documentation for any purpose and without
  43.  * fee is hereby granted, provided that the above copyright
  44.  * notice appear in all copies.  The University of California
  45.  * makes no representations about the suitability of this
  46.  * software for any purpose.  It is provided "as is" without
  47.  * express or implied warranty.
  48.  *
  49.  * $Header: /sprite/src/lib/include/sun4.md/RCS/alloca.h,v 1.2 89/06/16 13:18:11 rab Exp Locker: ouster $ SPRITE (Berkeley)
  50.  */
  51.  
  52. #ifndef _ALLOCA_H
  53. #define _ALLOCA_H
  54.  
  55. #ifdef sun4
  56. #define alloca(p)  ((char *) __builtin_alloca(p))
  57. #endif
  58.  
  59. #endif /* _ALLOCA_H */
  60.  
  61. @
  62.  
  63.  
  64. 1.2
  65. log
  66. @*** empty log message ***
  67. @
  68. text
  69. @d16 1
  70. a16 1
  71.  * $Header: /sprite/src/lib/include/sun4.md/RCS/alloca.h,v 1.1 89/05/17 16:21:46 rab Exp Locker: rab $ SPRITE (Berkeley)
  72. d23 1
  73. a23 1
  74. #define alloca(p)  __builtin_alloca(p)
  75. @
  76.  
  77.  
  78. 1.1
  79. log
  80. @Initial revision
  81. @
  82. text
  83. @d16 1
  84. a16 1
  85.  * $Header: /sprite/lib/forms/RCS/proto.h,v 1.2 89/01/07 04:12:44 rab Exp $ SPRITE (Berkeley)
  86. a27 1
  87. #ifdef
  88. @
  89.